Source code :: 01 Mach Number RD.htm

[Return]
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%page args="shot, page" />
<%
    from pygolem_lite import Shot
    from pygolem_lite.web import cat, emph, get_page_paths, make_zoom_image, make_image
    page_path, base_path, page  = get_page_paths(shot, page)
%>

<ul>
<li> Data analysis script source: <a href="plots.py">[plots.py]</a>
<li> Analyzed channels: 1-12: Papouch St
</ul>

% for i in range(1, 12+1, 2):

<h4>Mach number for channel ${i} vs. channel ${i+1}</h4>
${ make_image('M1-ch{}_ch{}'.format(i, i+1)) }

% endfor

<ul>
<li> Data analysis script source: <a href="plots.py">[plots.py]</a>
<li> Analyzed channels: 1-2: Papouch Ja
</ul>

% for i in range(1, 2+1, 2):

<h4>Mach number for channel ${i} vs. channel ${i+1}</h4>
${ make_image('M2-ch{}_ch{}'.format(i, i+1)) }

% endfor

Navigation